/* General styles */

body {
  font-family: 'PT Serif', serif;
  background-color: #ffffff;
  margin: 0px ;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Amazon Ember', sans-serif;
  font-weight: 500;
}
.Header-logo1 img {
  max-height: 50px;
  width: auto;
  margin-bottom: 20px;
}

header {
  background-color:#F2EEE2;
  padding: 20px;
  text-align: center;
  font-family : 'Amazon Ember', sans-serif !Important;
}
nav {
  padding: 10px;
  text-align: center;
}

nav a {
  color: #000;
  text-decoration: none;
  margin: 0 30px;
}

nav a:hover {
  text-decoration: underline;
  color: #AD8957;
}

nav a.active {
  text-decoration: underline; /* Adds underline for active link */
  color: #b48146; /* Active link color */
}
.breadcrumb {
  background-color: transparent;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}

.breadcrumb-item {
  display: inline;
  color: #666;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    margin-left: 0px;
    margin-right: 0px;
}
.breadcrumb>.active {
  color: #000000 !Important;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: " / ";
  color: #666;
}
.banner {
  position: relative;
  width: 95%; /* Make the banner container full width */
  max-width: 100%; /* Ensure the banner container does not exceed viewport width */
  height: auto; /* Adjust height based on image aspect ratio */
  overflow: hidden; /* Hide any overflow */
  margin: 0 auto; /* Remove margin to eliminate space above */
}

.banner-img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.container{
  padding-top: 30px;
  padding-left: 38px;
  padding-right: 32px;
}
 .container img{
    height: auto;
    object-fit: contain;
 }

.newsroom p {
  text-align: center;
  font-size: 16px;
}

.carousel {
  margin-top: 40px;
}

.newsroom h2 {
  margin: 40px;
  color: #b48146;
  text-align: center;
  font-size: 35px;
  margin-top: 40px;
  text-underline-offset: 12px;
  text-decoration: underline;
  
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
  padding-right: 80px;
  padding-left: 80px;
}

.news-item {
  border: 1px solid #ddd;
  padding: 20px;
  text-align: center;
}

.news-item img {
  max-width: 100%;
  height: auto;
}

.news-item h4 {
  font-size: 16px;
    margin-top: 10px;
    text-align: center;
}

.news-item p {
  margin: 10px 0;
}

.read-more {
  color: #b48146;
  font-weight: bold;
}
a:focus, a:hover{
  color:black;
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
  font-size: 28px;
  padding: 10px;
  /* Adjust the padding to add space between the container and the text */
  margin-top: -3px;
}

.marquee p {
  display: inline-block;
  animation: marquee 100s linear infinite;
  margin-top: -20px;
  margin-bottom: -20px;
  /* Adjust the animation duration as needed */
}

.marquee p:nth-child(odd) {
  color: #fff;
  /* Red color for odd paragraphs */
}

.marquee p:nth-child(even) {
  color: #fff;
  /* Blue color for even paragraphs */
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .marquee {
    font-size: 18px;
    padding: 5px;
  }
}


/* Mobile view for grid */
@media (max-width: 768px) {
  .news-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile view for carousel */
@media (max-width: 768px) {
  .carousel-inner .item img {
      width: 25%; /* Adjust logo width */
  }

  .carousel-inner .item {
      display: flex;
      justify-content: space-between;
      padding: 0 5px;
  }
}

*shubham mobile code*/ 
header.mobile {
  position: relative;
}

#menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 15px;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #333;
  margin: 4px auto;
}

/* Full-Screen Sliding Menu */
#sliding-menu {
  position: fixed;
  top: 0;
  left: -100%; /* Hidden off-screen */
  width: 80%; /* Cover entire screen */
  height: 100%;
  background-color: #F2EEE2;
  color: #fff;
  z-index: 1000; 
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

#sliding-menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
  margin-top: 30px;
}

#sliding-menu ul li {
  margin: 20px 0;
}

#sliding-menu ul li a {
  color: black;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

/* Close Button */
#close-menu {
  position: absolute;
  top: 0px;
  right: 20px;
  background: none;
  border: none;
  color: black;
  font-size: 40px;
  cursor: pointer;
}

/* Active Menu */
#sliding-menu.active {
  left: 0; /* Slide into view */
}

body.menu-open {
  overflow: hidden; /* Prevent scrolling when menu is open */
}


@media (max-width: 768px) {
.dektop{
  display:none;

}
.container{
  display: none;
}
.carousel-inner{
  overflow:visible;
}
.carousel-inner .item img{
  width: 80%;
}
.news-item{
  padding: 10px;
}
.news-grid{
  padding: 10px;
}
}

@media (min-width: 768px) {
  .mobile{
    display:none;
  }
  .mobile-container{
    display: none;
  }
  }


  #uniqueNewsCarousel {
    width: 100%;
    overflow: hidden;
}

.unique-carousel-inner {
    display: flex;
    animation: uniqueScrollLeft 15s linear infinite;
}

.unique-carousel-item {
    flex: 0 0 auto;
    width: 100%;
}

.unique-col {
    flex: 0 0 25%; /* Adjusted to fit 8 items in a row (12.5% for 8 items) */
    padding: 0;
}

@keyframes uniqueScrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}


#pagination {
  margin-top: 20px;
  text-align: center;
}
#pagination button {
  margin: 5px;
  padding: 10px 20px;
  cursor: pointer;
}
#pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

#pagination button {
  margin: 5px;
    padding: 5px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    background-color: #f2eee2;
    color: #b48146;
    font-family: 'PT Serif';
}






